19 lines
386 B
C#
19 lines
386 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace LeafWeb.Core.Models
|
|
{
|
|
public class FluxnetSite
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public string FluxnetId { get; set; }
|
|
|
|
public string SiteName { get; set; }
|
|
|
|
public string Country { get; set; }
|
|
|
|
public string LandUnit { get; set; }
|
|
}
|
|
}
|