BllResult.cs 259 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    public class BllResult
    {
        public bool Success { get; set; }
        public string Msg { get; set; }
        public object Data { get; set; }
    }
}