7 lines
No EOL
124 B
C#
7 lines
No EOL
124 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
public abstract class BaseEntity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
} |