12 lines
261 B
C#
12 lines
261 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WebApi.Library.DBContext.DB.DBContext.AccountDB.Tables;
|
|
|
|
public partial class TRefreshToken
|
|
{
|
|
public string CAuid { get; set; } = null!;
|
|
|
|
public string CRefreshToken { get; set; } = null!;
|
|
}
|