16 lines
359 B
C#
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; }
|
|
}
|
|
}
|