zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Specifications/Builder/IncludableSpecificationBuilder.cs

8 lines
316 B
C#
Raw Permalink Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.DeviceCenter.Domain.Specifications.Builder
{
public class IncludableSpecificationBuilder<T, TProperty>(Specification<T> specification) : IIncludableSpecificationBuilder<T, TProperty> where T : class
{
public Specification<T> Specification { get; } = specification;
}
}