dotnet-cakemail-sdk/CM.Shared/CustomAttribute.cs

7 lines
146 B
C#

namespace CM.Shared;
public class CustomAttribute
{
public required string Name { get; set; }
public required string Value { get; set; }
}