forked from ddrilling/AsbCloudServer
11 lines
277 B
C#
11 lines
277 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class StatOperationDto: IId
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Caption { get; set; }
|
|||
|
public StatOperationBase Plan { get; set; }
|
|||
|
public StatOperationBase Fact { get; set; }
|
|||
|
}
|
|||
|
}
|