Changelogger/ChangeloggerCSharp/Models/ChangelogEntryModel.cs
2021-09-15 16:21:04 +02:00

16 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ChangeloggerMVC.Models
{
public class ChangelogEntryModel
{
public int ModuleId { get; set; }
public int TypeId { get; set; }
public string EntryText { get; set; }
public string Version { get; set; }
}
}