namespace FsTool.Tasks
{
public partial class RegionTasks
{
///
/// 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);
///
/// 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,
}
}
}