forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
14 lines
320 B
C#
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; }
|
|
}
|