erp-platform/api/src/Kurs.Platform.Domain/Queries/Break.cs

17 lines
352 B
C#
Raw Normal View History

2025-09-26 20:34:03 +00:00
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;
}
}