using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; namespace backstage.Models { public class ResultModel { public bool IsSuccess { get; set; } = false; public string Message { get; set; } public object Data { get; set; } } }