forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
16 lines
465 B
C#
16 lines
465 B
C#
using Microsoft.Extensions.Configuration;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.Infrastructure.PostConfigurations;
|
|
|
|
public class TravelAgentPostConfiguration : PostConfiguration
|
|
{
|
|
public override string Type => nameof(TravelAgentPostConfiguration);
|
|
public double PersonalCount { get; set; }
|
|
public double BonusForExtraSales { get; set; }
|
|
}
|