using System;
using System.Collections.Generic;
using System.Text;

namespace Tianyi.DingtalkRobotKit
{
    public class at
    {
        public at()
        {
            atMobiles = new List<string>();
            isAtAll = false;
        }
        public List<string> atMobiles { get; set; }

        public bool isAtAll { get; set; }
    }
}