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.
13 lines
402 B
13 lines
402 B
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace Model.Git; |
|
|
|
public class GitPatchModel |
|
{ |
|
public int Id { get; set; } = 1; |
|
public string Name { get; set; } = "Add name..."; |
|
public DateTime Date { get; set; } = DateTime.Now; |
|
public ICollection<GitChangeModel> GitChangeModels { get; set; } = new List<GitChangeModel>(); |
|
public string Important { get; set; } = "False"; |
|
} |