Files
ProektstuZhenechka/TheCatHasPawsProject/CatHasPawsContratcs/Infrastructure/PostConfigurations/PostConfiguration.cs

9 lines
197 B
C#

namespace CatHasPawsContratcs.Infrastructure.PostConfigurations;
public class PostConfiguration
{
public virtual string Type => nameof(PostConfiguration);
public double Rate { get; set; }
}