mirror of
https://github.com/yawaflua/yaflay.ru.git
synced 2026-02-04 19:04:12 +02:00
pooko
This commit is contained in:
12
Models/Tables/Redirects.cs
Normal file
12
Models/Tables/Redirects.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace yaflay.ru.Models.Tables
|
||||
{
|
||||
public class Redirects
|
||||
{
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public int Id { get; set; }
|
||||
public string? uri { get; set; }
|
||||
public string? redirectTo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user