16 lines
310 B
C#
Raw Normal View History

2024-04-26 19:51:43 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterDataModels.Models
{
public interface ICarModel : IId
{
string BrandCar { get; }
string Model { get; }
int AdministratorId { get; }
}
}