14 lines
337 B
C#
14 lines
337 B
C#
using System;
|
|
using Sockeye.Biz;
|
|
|
|
namespace Sockeye.Models
|
|
{
|
|
public class ScheduleItemAdjustParams
|
|
{
|
|
public SockType Type { get; set; }
|
|
public long Id { get; set; }
|
|
public long? UserId { get; set; }
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
}
|
|
} |