1
0

Updated project

This commit is contained in:
Michael Gordeev
2020-03-03 16:49:41 +03:00
parent cfe38cda16
commit ad8b23f727
196 changed files with 8041 additions and 2450 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace MyWebsite.Models
{
public class ResumeModel
{
[Key]
[Required]
[Column(TypeName = "varchar(10)")]
[DisplayName("Language")]
public string Language { get; set; }
[Required]
[Column(TypeName = "text")]
[DisplayName("Content")]
public string Content { get; set; }
[DisplayName("Last chagnge")]
public DateTime LastUpdate { get; set; }
}
}