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