Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/9a78f790a647d4569de597d9d3c77b6e1e1495dc/RequestPlex.Store/UserModel.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/RequestPlex.Store/UserModel.cs

15 lines
297 B

using System;
using Dapper.Contrib.Extensions;
namespace RequestPlex.Store
{
[Table("User")]
public class UserModel : Entity
{
public string User { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}