17 lines
352 B
C#
17 lines
352 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using Volo.Abp.Domain.Values;
|
||
|
|
|
||
|
|
namespace Kurs.Platform.Queries;
|
||
|
|
|
||
|
|
public class Break : ValueObject
|
||
|
|
{
|
||
|
|
public int EndValue { get; set; }
|
||
|
|
public int StartValue { get; set; }
|
||
|
|
|
||
|
|
protected override IEnumerable<object> GetAtomicValues()
|
||
|
|
{
|
||
|
|
yield return EndValue;
|
||
|
|
yield return StartValue;
|
||
|
|
}
|
||
|
|
}
|