forked from ddrilling/AsbCloudServer
94b7dd3ef7
Stats reorganized
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; }
|
|
}
|
|
}
|