14 lines
243 B
C#
14 lines
243 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
public class GiriSeriali
|
|
{
|
|
[Key]
|
|
public string? Brserial { get; set; }
|
|
|
|
[Key]
|
|
public string? Pisergir { get; set; }
|
|
}
|
|
}
|