17 lines
344 B
C#
17 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataModels.Models
|
|
{
|
|
public interface IProviderModel : IId
|
|
{
|
|
string Name { get; set; }
|
|
string Type { get; set; }
|
|
byte[] Logo { get; set; }
|
|
string Number { get; set; }
|
|
}
|
|
}
|