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 GetAtomicValues() { yield return EndValue; yield return StartValue; } }