zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Specifications/Builder/IncludableSpecificationBuilder.cs
2023-12-05 17:22:48 +08:00

8 lines
316 B
C#

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;
}
}