Fan website of IMMORTAL: Gates of Pyre.
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.
 
 
 
 

18 lines
517 B

using System;
using System.Collections.Generic;
namespace Model.Immortal.Notes;
public class NoteModel {
public int Id { get; set; }
public DateTime LastUpdated { get; set; }
public string Name { get; set; }
public string Section { get; set; }
public string Description { get; set; }
public bool IsHidden { get; set; } = false;
public bool IsPreAlpha { get; set; } = true;
public string DEPRECATED_Id() {
return (Section + "-" + Name).ToLower().Replace(" ", "-");
}
}