You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
API/src/Entities/DataSourceEntity.cs

15 lines
415 B

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Entities;
[Table("DataSource")]
public class DataSourceEntity
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int IdSource { get; set; }
public required string Type { get; set; }
public required string Modele { get; set; }
public float Precision { get; set; }
}