forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
14 lines
372 B
C#
14 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.Infrastructure.PostConfigurations;
|
|
|
|
public class ChiefPostConfiguration : PostConfiguration
|
|
{
|
|
public override string Type => nameof(ChiefPostConfiguration);
|
|
public double PersonalCountTrendPremium { get; set; }
|
|
}
|