FruitBankHybridApp/FruitBank.Common/Entities/IPartner.cs

15 lines
397 B
C#

using AyCode.Interfaces.Entities;
using AyCode.Interfaces.TimeStampInfo;
namespace FruitBank.Common.Entities;
public interface IPartner : IEntityInt, ITimeStampInfo
{
string Name { get; set; }
string PostalCode { get; set; }
string Country { get; set; }
string State { get; set; }
string County { get; set; }
string City { get; set; }
string Street { get; set; }
}