mirror of
https://github.com/VitalickS/BrightSharp.Toolkit.git
synced 2026-03-20 18:11:20 +00:00
13 lines
332 B
C#
13 lines
332 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AppleJobs.Data.Models.Inventory
|
|
{
|
|
public class Accessories
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|