8 lines
109 B
C#
8 lines
109 B
C#
namespace Billing.Models
|
|
{
|
|
public interface IIdItem
|
|
{
|
|
public int Id { get; set; }
|
|
}
|
|
}
|