Files
Check/MagicCarpetProject/MagicCarpetContracts/Infrastructure/PostConfigurations/PostConfiguration.cs

14 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetContracts.Infrastructure.PostConfigurations;
public class PostConfiguration
{
public virtual string Type => nameof(PostConfiguration);
public double Rate { get; set; }
}