21 lines
487 B
C#
21 lines
487 B
C#
|
using PluginsConventionLibrary;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Forms
|
|||
|
{
|
|||
|
public class PluginsConventionProvider : PluginsConventionElement
|
|||
|
{
|
|||
|
public string FCs { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Wishes { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string DeliveryType { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string? DeliveryDate { get; set; }
|
|||
|
}
|
|||
|
}
|