12345678910111213141516171819202122232425262728293031323334353637 |
- using AutoMapper;
- using Microsoft.EntityFrameworkCore.Migrations.Operations;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace AipGateway.API.Domain.Entities
- {
- public partial class LinkedApiKeyDto
- {
- public int Id { get; set; }
- public required int ServerId { get; set; }
- public string ApiKey { get; set; }
- public DateTime ExpiredAt { get; set; }
- public DateTime CreatedAt { get; set; }
- public bool UseYn { get; set; }
- public DateTime? DeletedAt { get; set; }
- public void Mapping(Profile profile)
- {
- profile.CreateMap<LinkedApiKeyDto, TbLinkedApiKey>();
- profile.CreateMap<TbLinkedApiKey, LinkedApiKeyDto>();
- }
- public override string ToString()
- {
- return "LinkedApiKeyDto{ Id: " + Id + ", ServerId: " + ServerId + ", ApiKey: " + ApiKey + ", ExpiredAt: " + ExpiredAt + ", CreatedAt: " + CreatedAt + "}";
- }
- }
- }
|