35 lines
1001 B
C#
35 lines
1001 B
C#
namespace FsToolbox.Cli.Tasks
|
|
{
|
|
public static partial class RegionTasks
|
|
{
|
|
#region Record Store
|
|
|
|
/// <summary>
|
|
/// Basic region store information including cooperation status.
|
|
/// </summary>
|
|
/// <param name="Id">The store identifier.</param>
|
|
/// <param name="Name">The store name.</param>
|
|
/// <param name="CooperationStatus">The cooperation status of the store.</param>
|
|
public record Store(int Id, string Name, CooperationStatus CooperationStatus);
|
|
|
|
#endregion
|
|
|
|
#region Enum CooperationStatus
|
|
|
|
/// <summary>
|
|
/// Describes the cooperation state between the store and the organization.
|
|
/// </summary>
|
|
public enum CooperationStatus
|
|
{
|
|
NoStatus = 0,
|
|
NoContact = 1,
|
|
Negotiating = 2,
|
|
DoNotWant = 4,
|
|
Cooperating = 5,
|
|
DonatingToTafel = 6,
|
|
NoExisting = 7
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |