mirror of
https://github.com/yawaflua/yaflay.ru.git
synced 2025-12-09 20:19:32 +02:00
13 lines
322 B
C#
13 lines
322 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace yawaflua.ru.Models.Tables
|
|
{
|
|
public class Redirects
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
public string? uri { get; set; }
|
|
public string? redirectTo { get; set; }
|
|
}
|
|
}
|