Move CLI project into subfolder
This commit is contained in:
35
Cli/Tasks/RegionTasks.Regions.cs
Normal file
35
Cli/Tasks/RegionTasks.Regions.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user